home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-17 | 637 b | 16 lines | [TEXT/ToyS] |
- -- Example AppleScript to show how to get/set various caption parameters
-
- tell application "SiteCam"
- get message of caption 1 of active document
- get position of caption 1 of active document
- get style of caption 1 of active document
- get font of caption 1 of active document
- get color of caption 1 of active document
- get size of caption 1 of active document
- get horizontal justification of caption 1 of active document
- get vertical justification of caption 1 of active document
- --set message of caption 1 of active document to "new caption"
- --set horizontal justification of caption 1 of active document to left
- -- etc
- end tell
-